561d29c8354f41d175507ce78f0497977c747757,src/java/org/orbeon/oxf/xforms/XFormsProperties.java,XFormsProperties,isNewXHTMLLayout,#XFormsContainingDocument#,471
Before Change
}
public static boolean isNewXHTMLLayout(XFormsContainingDocument containingDocument) {
return getBooleanProperty(containingDocument, NEW_XHTML_LAYOUT);
}
public static boolean isReadonly(XFormsContainingDocument containingDocument) {
After Change
public static boolean isNewXHTMLLayout(XFormsContainingDocument containingDocument) {
// Check both properties for backward compatibility
final String value = getStringProperty(containingDocument, XHTML_LAYOUT);
return XHTMLLayout.SPAN.toString().toLowerCase().equals(value) || getBooleanProperty(containingDocument, NEW_XHTML_LAYOUT);
}
public static boolean isReadonly(XFormsContainingDocument containingDocument) {